home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 30 / PC Gamer IT CD 30 1-2.iso / MOTS / GAMEDATA / RESOURCE / JKMRES.GOO / cog_exp_hrail.cog < prev    next >
Text File  |  1998-02-25  |  696b  |  37 lines

  1. # Jedi Knight Missions Cog Script
  2. #
  3. # EXP_HRAIL.COG
  4. #
  5. # EXPLOSION SCRIPT - Homing Rail Det
  6. #
  7. # Signals KYLE_M.COG to signal all the other clients to remove this
  8. # ghost seeking rail det.
  9. #
  10. # [RF]
  11. #
  12. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  13.  
  14. symbols
  15.  
  16. template    exp=+raildet_exp        local
  17.  
  18. message     created
  19. message        timer
  20.  
  21. end
  22.  
  23. # ========================================================================================
  24.  
  25. code
  26.  
  27. created:
  28.     SendTrigger(GetLocalPlayerThing(), 3503, GetUserData(GetThingParent(GetSenderRef())), GetSenderRef(), 0, 0);
  29.     SetTimerEx(0.5, 0, GetSenderRef(), 0);
  30.     return;
  31.  
  32. timer:
  33.     DestroyThing(GetParam(0));
  34.    return;
  35.  
  36. end
  37.